home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
biz
/
dbase
/
comicdem.lha
/
Demo
/
Scripts
/
InstallFontsNTSC
next >
Wrap
Text File
|
1994-07-04
|
815b
|
33 lines
echo "This script will install the fonts Opal9 and CGTimes23 into your"
echo "FONTS: directory, after checking to see if you already have them."
echo ""
if not EXISTS fonts:opal/9
echo "No existing font, installing opal9"
if not EXISTS fonts:opal
makedir fonts:opal
endif
copy /fonts/opal/9 TO fonts:opal/9 quiet
if not EXISTS fonts:opal.font
/copy fonts/opal.font fonts:opal.font
endif
else
echo "Font opal 9 exists."
endif
if not EXISTS fonts:CGTimes/23
echo "No existing font, installing CGTimes23"
if not EXISTS fonts:CGTimes
makedir fonts:CGTimes
endif
copy /fonts/CGTimes/23 TO fonts:CGTimes/23 ALL
if not EXISTS fonts:CGTimes.font
copy /fonts/CGTimes.font fonts:CGTimes.font
endif
else
echo "Font CGTimes 23 exists."
endif
echo "All Done. Click close gadget to get rid of window."